home *** CD-ROM | disk | FTP | other *** search
/ Freelog 115 / FreelogNo115-MaiJuin2013.iso / Internet / Filezilla Server / FileZilla_Server-0_9_41.exe / source / interface / misc / SAPrefsSubDlg.h < prev    next >
C/C++ Source or Header  |  2011-11-06  |  2KB  |  58 lines

  1. /*********************************************************************
  2.  
  3.    Copyright (C) 2000 Smaller Animals Software, Inc.
  4.  
  5.    This software is provided 'as-is', without any express or implied
  6.    warranty.  In no event will the authors be held liable for any damages
  7.    arising from the use of this software.
  8.  
  9.    Permission is granted to anyone to use this software for any purpose,
  10.    including commercial applications, and to alter it and redistribute it
  11.    freely, subject to the following restrictions:
  12.  
  13.    1. The origin of this software must not be misrepresented; you must not
  14.      claim that you wrote the original software. If you use this software
  15.      in a product, an acknowledgment in the product documentation would be
  16.      appreciated but is not required.
  17.  
  18.    2. Altered source versions must be plainly marked as such, and must not be
  19.      misrepresented as being the original software.
  20.  
  21.    3. This notice may not be removed or altered from any source distribution.
  22.  
  23.    http://www.smalleranimals.com
  24.    smallest@smalleranimals.com
  25.  
  26. **********************************************************************/
  27. // SAPrefsSubDlg.h: interface for the CSAPrefsSubDlg class.
  28. //
  29. //////////////////////////////////////////////////////////////////////
  30.  
  31. #if !defined(AFX_SAPREFSSUBDLG_H__26CFAEA8_91FC_11D3_A10C_00500402F30B__INCLUDED_)
  32. #define AFX_SAPREFSSUBDLG_H__26CFAEA8_91FC_11D3_A10C_00500402F30B__INCLUDED_
  33.  
  34. #if _MSC_VER >= 1000
  35. #pragma once
  36. #endif // _MSC_VER >= 1000
  37.  
  38. class CSAPrefsSubDlg : public CDialog  
  39. {
  40. public:
  41.     DECLARE_DYNCREATE(CSAPrefsSubDlg)
  42.  
  43.     CSAPrefsSubDlg();
  44.    CSAPrefsSubDlg(UINT nID, CWnd *pParent = NULL);
  45.     virtual ~CSAPrefsSubDlg();
  46.  
  47.    UINT GetID()      {return m_id;}
  48. public:
  49.     virtual BOOL PreTranslateMessage(MSG* pMsg);
  50.    virtual void OnOK();
  51.    virtual void OnCancel();
  52.  
  53.    DECLARE_MESSAGE_MAP()
  54.    UINT     m_id;
  55. };
  56.  
  57. #endif // !defined(AFX_SAPREFSSUBDLG_H__26CFAEA8_91FC_11D3_A10C_00500402F30B__INCLUDED_)
  58.